home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / ODF / Found / FWCollec / PRValLnk.cpp < prev    next >
Encoding:
Text File  |  1996-09-17  |  1.4 KB  |  51 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                PRValLnk.cpp
  4. //    Release Version:    $ ODF 2 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #include "FWFound.hpp"
  11.  
  12. #ifndef PRVALLNK_H
  13. #include "PRValLnk.h"
  14. #endif
  15.  
  16. //========================================================================================
  17. // Runtime informations
  18. //========================================================================================
  19.  
  20. #ifdef FW_BUILD_MAC
  21. #pragma segment fwcollec
  22. #endif
  23.  
  24. //========================================================================================
  25. // Class FW_CPrivValueLink - Implementation
  26. //========================================================================================
  27.  
  28. //----------------------------------------------------------------------------------------
  29. // FW_CPrivValueLink::FW_CPrivValueLink
  30. //----------------------------------------------------------------------------------------
  31.  
  32. FW_CPrivValueLink::FW_CPrivValueLink(void* value)
  33. {
  34.     fValue = value;
  35. }
  36.  
  37. //----------------------------------------------------------------------------------------
  38. // FW_CPrivValueLink::~FW_CPrivValueLink
  39. //----------------------------------------------------------------------------------------
  40.  
  41. FW_CPrivValueLink::~FW_CPrivValueLink()
  42. {
  43. }
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.